home *** CD-ROM | disk | FTP | other *** search
/ Aminet 28 / Aminet 28 (1998)(GTI - Schatztruhe)[!][Dec 1998].iso / Aminet / dev / src / GLperf3.12-src.lha / GLperf / Suite.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-01  |  2.5 KB  |  85 lines

  1. /*
  2.  *   (C) COPYRIGHT International Business Machines Corp. 1993
  3.  *   All Rights Reserved
  4.  *   Licensed Materials - Property of IBM
  5.  *   US Government Users Restricted Rights - Use, duplication or
  6.  *   disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7.  
  8. //
  9. // Permission to use, copy, modify, and distribute this software and its
  10. // documentation for any purpose and without fee is hereby granted, provided
  11. // that the above copyright notice appear in all copies and that both that
  12. // copyright notice and this permission notice appear in supporting
  13. // documentation, and that the name of I.B.M. not be used in advertising
  14. // or publicity pertaining to distribution of the software without specific,
  15. // written prior permission. I.B.M. makes no representations about the
  16. // suitability of this software for any purpose.  It is provided "as is"
  17. // without express or implied warranty.
  18. //
  19. // I.B.M. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
  20. // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL I.B.M.
  21. // BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  22. // WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
  23. // OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
  24. // CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  25. //
  26. // Author:  John Spitzer, IBM AWS Graphics Systems (Austin)
  27. //
  28. */
  29.  
  30. #ifndef _Suite_h
  31. #define _Suite_h
  32.  
  33. #include "Table.h"
  34. #include "Test.h"
  35. #include "TestList.h"
  36. #include "Attr.h"
  37. #include "AttrList.h"
  38. #include "Prop.h"
  39. #include "PropList.h"
  40. #include "Clear.h"
  41. #include "LineLoop.h"
  42. #include "LineStrp.h"
  43. #include "Lines.h"
  44. #include "Points.h"
  45. #include "Polygon.h"
  46. #include "QuadStrp.h"
  47. #include "Quads.h"
  48. #include "Xform.h"
  49. #include "TriFan.h"
  50. #include "TriStrp.h"
  51. #include "Tris.h"
  52. #include "DrawPix.h"
  53. #include "ReadPix.h"
  54. #include "CopyPix.h"
  55. #include "Text.h"
  56. #include "Bitmap.h"
  57. #include "Tex.h"
  58. #include "General.h"
  59. #include "Print.h"
  60. #include "TestName.h"
  61. #include "PropName.h"
  62. #include "Global.h"
  63. #include "AttrName.h"
  64.  
  65. #define NumLeafClasses 18
  66.  
  67. typedef struct _Suite {
  68.     TestListPtr masterList[NumLeafClasses];
  69.     TestListPtr sortList[NumLeafClasses];
  70. /* not used 
  71.     TestListPtr suiteList;
  72. */
  73. } Suite, *SuitePtr;
  74.  
  75. SuitePtr new_Suite();
  76. void delete_Suite(SuitePtr);
  77. void Suite__ParseGlobal(SuitePtr, PropertyPtr);
  78. void Suite__ParseTest(SuitePtr, int, PropertyListPtr);
  79. void Suite__Run(SuitePtr, int);
  80.  
  81. extern TablePtr attributes;
  82. extern TablePtr properties;
  83. extern TablePtr tests;
  84. #endif
  85.